home *** CD-ROM | disk | FTP | other *** search
/ CD World 1997 November / CD World - Kasım 1997.iso / misc / cryptext / rc4.h < prev    next >
C/C++ Source or Header  |  1996-11-09  |  291b  |  25 lines

  1. /* rc4.h */
  2. #ifndef __RC4_H
  3. #define __RC4_H
  4.  
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8.  
  9. typedef struct rc4Key
  10. {
  11.     BYTE state[256];
  12.     BYTE x;
  13.     BYTE y;
  14. } rc4Key;
  15.  
  16. void rc4Setup (LPBYTE, int, rc4Key *);
  17. void rc4 (LPBYTE, int, rc4Key *);
  18.  
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22.  
  23. #endif
  24.  
  25.